home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wayzata's Best of Shareware PC/Windows 2
/
Wayzata's Best of Shareware 2.0 (Windows) (Wayzata Technology)(7112)(1994).bin
/
pc
/
dos
/
games
/
bduel121
/
bdinstal.bat
< prev
next >
Wrap
DOS Batch File
|
1992-09-30
|
789b
|
29 lines
echo off
if "%1" == "" goto usage
%1
cd\
mkdir bduel
copy a:BD.BAT %1
cd %1\bduel
copy a:*.* %1
cls
echo -- Installation is complete. A directory called BDUEL has been
echo -- created on the disk drive you specified. To run BassDuel in the
echo -- future, simply type type BD then press ENTER key from any directory.
echo --
echo -- To run BassDuel now, type BASSDUEL then press the ENTER key.
goto end
:usage
echo -- You must specify a disk drive where BassDuel is to be installed:
echo --
echo -- EXAMPLES: a:bdinstal c:
echo -- -OR-
echo -- a:bdinstal d:
echo --
echo -- Notice the c: and the d: at the end of the command. These specify
echo -- where you want to install BassDuel.
goto end
:end
%1